@charset "utf-8";
/**
 * 重置浏览器默认样式
 */
*{
    margin: 0;
    padding: 0;
    color: #5a5a5a;
    font: 14px/24px "Microsoft YaHei", SimSun, Arial;
    box-sizing: border-box;
}
html{
    background-color: #fff;
}
img,input,button,textarea,select{
    border: none;
    outline: none;
}
table{
    border-collapse: collapse;
    border-spacing: 0;
}
ol,ul{
    list-style: none;
}
.hide{
    display: none;
}
.block{
    display: block;
}
.tl{
    text-align: left;
}
.tc{
    text-align: center;
}
.tr{
    text-align: right;
}
.fl{
    float: left;
}
.fr{
    float: right;
}
a{
    text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
    font-style: 14px;
    font-weight: normal;
}
.clearfix:after,.clearfix:before{
    content: "";
    display: block;
    height: 0;
    clear: both;
}